D:\git\skunkworks\herald-for-cpp\herald\src\data\concrete_payload_data_formatter.cpp
Line | Count | Source (jump to first uncovered line) |
1 | // Copyright 2021 Herald Project Contributors | |
2 | // SPDX-License-Identifier: Apache-2.0 | |
3 | // | |
4 | ||
5 | #include "herald/data/payload_data_formatter.h" | |
6 | #include "herald/datatype/payload_data.h" | |
7 | ||
8 | namespace herald::data { | |
9 | ||
10 | using namespace herald::datatype; | |
11 | ||
12 | std::string | |
13 | ConcretePayloadDataFormatter::shortFormat(const PayloadData& payloadData) const noexcept | |
14 | 0 | { |
15 | 0 | return payloadData.shortName(); |
16 | 0 | } |
17 | ||
18 | } |